ALTER TABLE "OTRegister"
ADD COLUMN "Status" character(1) COLLATE pg_catalog."default" NOT NULL DEFAULT 'B'::bpchar
ALTER TABLE "OTRegister"
ADD COLUMN "Reason" text COLLATE pg_catalog."default"
		
	ALTER TABLE "OTRegister"
add COLUMN "LocationId" integer,
add CONSTRAINT "OTRegister_LocationId_fkey" FOREIGN KEY ("LocationId")
        REFERENCES public."Location" ("LocationId") MATCH SIMPLE

alter table "OTRegister"
	add column "OldAppointmentDate" timestamp(6) without time zone 